home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / doc / python-pyorbit / examples / c-inproc / testcall.idl < prev   
Encoding:
Text File  |  2008-05-01  |  183 b   |  9 lines

  1. module PyORBit {
  2.   interface TestCall {
  3.     // self.op1 calls other.op2 which calls self.op3
  4.     void op1(in TestCall other);
  5.     void op2(in TestCall other);
  6.     void op3();
  7.   };
  8. };
  9.